Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-waterfall-render

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-waterfall-render

Renders nested React components with asynchronous cached loading; useful for GraphQL clients and server side rendering.

  • 3.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
562
decreased by-49.51%
Maintainers
1
Weekly downloads
 
Created
Source

react-waterfall-render

npm version CI status

Renders nested React components with asynchronous cached loading.

Useful for GraphQL clients (e.g. graphql-react) and server side rendering.

Installation

To install with npm, run:

npm install react-waterfall-render

Use the WaterfallRenderContext in React components to declare asynchronous cached loading, and use the function waterfallRender to server side render your React app in a fully loaded state.

Requirements

  • Node.js: ^12.22.0 || ^14.17.0 || >= 16.0.0
  • Browsers: > 0.5%, not OperaMini all, not IE > 0, not dead

API

function waterfallRender

Resolves a React node rendered with all data loaded within cached.

It repeatedly renders the React node and awaits any loading cache promises declared within (using the declare loading function via WaterfallRenderContext), until no further loading is declared; implying all data has loaded and is rendered from cache.

If server side rendering, afterwards the cache should be serialized for hydration on the client prior to the initial client side render.

Intended for use in a Node.js environment for server side rendering, but could potentially be used for preloading components in modern browser environments that support async functions, etc.

ParameterTypeDescription
reactNodeReactNodeReact virtual DOM node.
renderFunctionSynchronous React render function, e.g. ReactDOMServer.renderToStaticMarkup (faster), or ReactDOMServer.renderToString (slower).

Returns: Promise<*> — Resolves the final render result, typically a HTML string.

Examples

How to import.

import waterfallRender from "react-waterfall-render/waterfallRender.mjs";

How to server side render a React app in Node.js.

import ReactDOMServer from "react-dom/server.js";
import waterfallRender from "react-waterfall-render/waterfallRender.mjs";
import App from "./components/App.mjs";

waterfallRender(<App />, ReactDOMServer.renderToStaticMarkup).then((html) => {
  // Do something with the HTML string…
});

member WaterfallRenderContext

React context object for making the declare loading function available within components when rendering with waterfallRender.

Type: object

PropertyTypeDescription
ProviderFunctionReact context provider component.
ConsumerFunctionReact context consumer component.
Examples

How to import.

import WaterfallRenderContext from "react-waterfall-render/WaterfallRenderContext.mjs";

Use within a component with the useContext React hook.

import React from "react";
import WaterfallRenderContext from "react-waterfall-render/WaterfallRenderContext.mjs";
const declareLoading = React.useContext(WaterfallRenderContext);

type DeclareLoading

Declares loading cache promises to waterfallRender. Available within React components via WaterfallRenderContext.

Type: Function

ParameterTypeDescription
promises…Promise<*>Promises that resolve once loading data has been cached. The values resolved don’t matter. Multiple arguments can be used, similar to how Array.push works.
Examples

Loading data in a React component within a server and client side rendered app.

import React from "react";
import WaterfallRenderContext from "react-waterfall-render/WaterfallRenderContext.mjs";
import useUserProfileData from "../hooks/useUserProfileData.mjs";
import UserProfile from "./UserProfile.mjs";

export default function UserPage({ userId }) {
  const declareLoading = React.useContext(WaterfallRenderContext);
  const { load, loading, cache } = useUserProfileData(userId);

  // For this example, assume loading errors are cached.
  if (cache) return <UserProfile data={cache} />;

  if (!loading) {
    const userDataPromise = load();

    // Only present when the app is server side rendered using the function
    // `waterfallRender`.
    if (declareLoading) {
      declareLoading(userDataPromise);

      // This render is on the server and will be discarded anyway for a
      // re-render once the declared loading promises resolve, so it’s
      // slightly more efficient to render nothing; particularly if the
      // loading state is expensive to render.
      return null;
    }
  }

  return "Loading…";
}

type ReactNode

A React virtual DOM node; anything that can be rendered.

Type: undefined | null | boolean | number | string | React.Element | Array<ReactNode>

Keywords

FAQs

Package last updated on 27 Nov 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc